home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Ver Disp 9.xpl < prev    next >
Text File  |  2004-03-01  |  2KB  |  66 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="5"
  4. "UIPATH"="Information\Core"
  5. "NAME"="Windows System Info #2"
  6. "OSVERSION"="0101011"
  7. "VERSION"="1.03"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Product Name"
  10. "TEXT 2"="Current Type"
  11. "TEXT 3"="System Root"
  12. "TEXT 4"="Install Date"
  13. "TEXT 5"="CurrentBuild"
  14. "DESCRIPTION 1"="This plug-in displays some information about your system. You can't change anything!!!"
  15. "DESCRIPTION 2"="'Install date' refers to the number of seconds that have passed since you installed windows."
  16. "AUTHOR"="Xteq Systems (CptSiskoX)"
  17. "CONTACTURL"="http://www.xteq.com"
  18. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"=" "
  20. "COMMENT 2"="See: http://www.jsiinc.com/tip0600/rh0664.htm"
  21.  
  22.  
  23. sP="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\"
  24. sV1="ProductName"
  25. sV2="CurrentType"
  26. sV3="SystemRoot"
  27. sV4="InstallDate"
  28. sV5="CurrentBuild"
  29.  
  30. Sub Plugin_Initialize 
  31.  if GetWinVer=2 or GetWinVer=4 or GetWinVer=6 then
  32.     s=RegReadValue(sP & sV1)
  33.     Call SetUIElement(1,s)
  34.  
  35.     s=RegReadValue(sP & sV2)
  36.     Call SetUIElement(2,s)
  37.  
  38.     s=RegReadValue(sP & sV3)
  39.     Call SetUIElement(3,s)
  40.  
  41.     s=RegReadValue(sP & sV4)
  42.     Call SetUIElement(4,s)
  43.  
  44.     s=RegReadValue(sP & sV5)
  45.     Call SetUIElement(5,s)
  46.  else
  47.     Call SetUIElement(1,"N/A")
  48.     Call SetUIElement(2,"N/A")
  49.     Call SetUIElement(3,"N/A")
  50.     Call SetUIElement(4,"N/A")
  51.     Call SetUIElement(5,"N/A")
  52.  end if
  53.  
  54.  
  55.  Call Disable 'user can't change anything!
  56. End Sub
  57.  
  58. Sub Plugin_CheckData(ElementIndex)
  59. End Sub
  60.  
  61. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  62. End Sub
  63.  
  64. Sub Plugin_Terminate 
  65. End Sub
  66.